home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / unixSyscall / umask.c < prev    next >
C/C++ Source or Header  |  1988-06-19  |  1KB  |  68 lines

  1. /* 
  2.  * umask.c --
  3.  *
  4.  *    Procedure to map from Unix umask system call to Sprite.
  5.  *
  6.  * Copyright 1986 Regents of the University of California
  7.  * All rights reserved.
  8.  */
  9.  
  10. #ifndef lint
  11. static char rcsid[] = "$Header: umask.c,v 1.1 88/06/19 14:32:09 ouster Exp $ SPRITE (Berkeley)";
  12. #endif not lint
  13.  
  14. #include "sprite.h"
  15. #include "fs.h"
  16.  
  17. #include "compatInt.h"
  18.  
  19. /*
  20.  * These are the bits to invert and pass to the Sprite system call.
  21.  */
  22.  
  23. #define PERMISSION_MASK 0777
  24.  
  25.  
  26. /*
  27.  *----------------------------------------------------------------------
  28.  *
  29.  * umask --
  30.  *
  31.  *    Procedure to map from Unix umask system call to Sprite
  32.  *    Fs_SetDefPerm.
  33.  *
  34.  * Results:
  35.  *    On success, the former value of umask is returned.  If
  36.  *    Fs_SetDefPerm returns an error,    UNIX_ERROR is returned and the
  37.  *    actual error code is stored in errno.  
  38.  *
  39.  * Side effects:
  40.  *    The default protection of files created by the current process
  41.  *    is changed.
  42.  *
  43.  *----------------------------------------------------------------------
  44.  */
  45.  
  46. int
  47. umask(newMask)
  48.     int newMask;
  49. {
  50.     ReturnStatus status;    /* result returned by Fs_SetDefPerm */
  51.     int oldMask;
  52.  
  53.     /*
  54.      * Sprite default permissions are the logical NOT of Unix permissions.
  55.      */
  56.  
  57.     newMask = (~newMask) & PERMISSION_MASK;
  58.     
  59.     status = Fs_SetDefPerm(newMask, &oldMask);
  60.     if (status != SUCCESS) {
  61.     errno = Compat_MapCode(status);
  62.     return(UNIX_ERROR);
  63.     } else {
  64.     oldMask = (~oldMask) & PERMISSION_MASK;
  65.     return(oldMask);
  66.     }
  67. }
  68.